Carbon


GetMissingComponentResourceProcPtr

Header: Components.h Carbon status: Under Evaluation

typedef OSErr(* GetMissingComponentResourceProcPtr) (
    Component c, 
    OSType resType, 
    SInt16 resID, 
    void *refCon, 
    Handle *resource
);

You would declare your function like this if you were to name it MyGetMissingComponentResourceCallback:

OSErr MyGetMissingComponentResourceCallback (
    Component c, 
    OSType resType, 
    SInt16 resID, 
    void *refCon, 
    Handle *resource
);
c
resType
resID
refCon
resource
function result

A result code.

AVAILABILITY

Under evaluation for Carbon.


© 2000 Apple Computer, Inc. — (Last Updated 4/6/2000)